home *** CD-ROM | disk | FTP | other *** search
/ Aminet 20 / Aminet 20 (1997)(GTI - Schatztruhe)[!][Aug 1997].iso / Aminet / comm / www / HTP.lha / HTP / source / gif.h < prev    next >
C/C++ Source or Header  |  1997-06-21  |  429b  |  25 lines

  1. /*
  2. //
  3. // gif.h
  4. //
  5. // Copyright (c) 1995-96 Jim Nelson.  Permission to distribute
  6. // granted by the author.  No warranties are made on the fitness of this
  7. // source code.
  8. // Amiga version - 1997 - Geert Bevin
  9. //
  10. */
  11.  
  12. #ifndef GIF_H
  13. #define GIF_H
  14.  
  15. #include <exec/types.h>
  16.  
  17. /* GIF format detected? */
  18. BOOL GifFormatFound(FILE *file);
  19.  
  20. /* get image dimensions */
  21. BOOL GifReadDimensions(FILE *file, WORD *height, WORD *width);
  22.  
  23. #endif
  24.  
  25.